home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / graphic / chiaro10.zip / DIRGIF.BAT < prev    next >
DOS Batch File  |  1993-01-29  |  376b  |  11 lines

  1. ECHO OFF
  2. REM
  3. REM   DIRGIF.BAT version 1.0, 01/29/93
  4. REM   James W. Birdsall
  5. REM   This batch file obtains the names of all files named .GIF in the
  6. REM   directory given as the first argument and passes them one by one
  7. REM   to the batch file ONEGIF. Output is put in the file given by the
  8. REM   second argument.
  9. REM
  10. FOR %%N IN ( %1\*.GIF ) DO CALL ONEGIF.BAT %%N %2
  11.